home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / remote / rafm111.zip / RAFMZIP.BAT < prev    next >
DOS Batch File  |  1991-11-17  |  852b  |  40 lines

  1. @ECHO OFF
  2. REM Example Batch file for use with RAFMALL.
  3. REM
  4. REM 2 parameters are passed to the batchfile:
  5. REM %1 : Complete path including extension
  6. REM %2 : Complete path WITHOUT extension.
  7. REM 
  8. REM f.e:
  9. REM Path of the AllFiles-listing is: C:\RA\ALLFILES.BBS
  10. REM
  11. REM Parameter 1: C:\RA\ALLFILES.BBS
  12. REM Parameter 2: C:\RA\ALLFILES
  13. REM
  14. REM Examples for several archivers:
  15. REM -----
  16. REM For ARJ:
  17. REM
  18. ARJ a %2 %1 -m -e
  19. REM Remove the -m if you want to keep the original listing
  20. REM
  21. REM -----
  22. REM For ZIP:
  23. REM
  24. REM PKZIP %2 %1 -m
  25. REM Remove the -m if you want to keep the original listing
  26. REM
  27. REM -----
  28. REM For LZH:
  29. REM
  30. REM LhA m %2 %1
  31. REM
  32. REM Replace m with a if you want to keep the original listing
  33. REM
  34. REM ----
  35. REM For ARC:
  36. REM PkArc m %2 %1
  37. REM
  38. REM Replace m with a if you want to keep the original listing
  39. REM
  40.